home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mger.dir / 00303.ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  542 b   |  27 lines

  1. on mouseUp
  2.   global Clips, fullscreenG
  3.   put "inside 303"
  4.   put "fullscreenG", fullscreenG
  5.   if fullscreenG = 1 then
  6.     puppetSprite(48, 1)
  7.     set the visible of sprite 48 to 0
  8.     puppetSprite(48, 0)
  9.     setbarB()
  10.     ChangeScreenSize(Clips, "160,140", 1)
  11.     go("F2")
  12.     updateStage()
  13.     set fullscreenG to 0
  14.   end if
  15.   updateStage()
  16. end
  17.  
  18. on exitFrame
  19.   global movieID, fullscreenG
  20.   updateStage()
  21.   QTMovie("Direct", movieID, "Idle")
  22.   if fullscreenG = 1 then
  23.     puppetSprite(48, 1)
  24.     set the visible of sprite 48 to 1
  25.   end if
  26. end
  27.